Microsoft® Script Debugger Immediate Window |
| Home |
|
The Immediate window displays information resulting from debugging statements in your code or from commands typed directly into the window.Use the Immediate window to:
When using the Immediate window, use the syntax for the active scripting language. For example, if you are debugging VBScript code, use ? or Debug.Write to display a variable or to display the results of an expression evaluation.
- Test problematic or newly written code.
- Query or change the value of a variable while code is running. While execution is halted, assign the variable a new value as you would in code.
- Call procedures as you would in code.
- View debugging output while the code is running.